home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / bbs / pentas20.zip / PENTAS20.EXE / SCRIPTS / TEST3.SCR < prev    next >
Text File  |  1997-08-20  |  3KB  |  85 lines

  1. START COMMENT
  2. ************************************
  3. Test #3 Script Written For Pentasim 
  4. ************************************
  5. END COMMENT
  6. DISPLAY,2,7
  7. In front of you is a @large@ pathway with @3@ small paths leading in @3@
  8. different directions.  Which @path@ do you take?
  9. CHOICES,4
  10. START CHOICE,10
  11. CHOICE,1,Path #1
  12. CHOICE,2,Path #2
  13. CHOICE,3,Path #3
  14. CHOICE,4,Forget It
  15. END CHOICE
  16. INPUT,Make your Choice:,15
  17. START DECISION
  18. 1
  19. GOTO,PATH1
  20. 2
  21. GOTO,PATH2
  22. 3
  23. GOTO,PATH3
  24. 4
  25. EXIT,NONE
  26. END DECISION
  27. ROUTINE,PATH1
  28. CLEAR
  29. DISPLAY,1,7
  30. You follow the @path@ for what feels like an @eternity@, but see nothing!
  31. WAIT
  32. EXIT
  33. START COMMENT
  34. *************************************************************************
  35. If we wanted to go somewhere else from here then we could issue another
  36. GOTO,ROUTINENAME command here, otherwise we MUST EXIT since the Script
  37. would finish this ROUTINE and then try to continue on from here.  It
  38. would not be able to since it would find ROUTINE,PATH2 and not know what
  39. to do with it.  Remember, ROUTINEs can ONLY be used if the user is sent 
  40. to them via a GOTO command.
  41. *************************************************************************
  42. END COMMENT
  43. ROUTINE,PATH2
  44. CLEAR
  45. DISPLAY,4,7
  46. A small @Troll@ like creature jumps out from behind a large rock and
  47. says, "}Choose the right hand and I will give you something.  Choose}
  48. }the wrong hand and I will take something from you!}"  The @creature@ 
  49. holds out his @hands@ for you to choose...
  50. CHOICES,2
  51. START CHOICE,12
  52. CHOICE,R,His Right Hand
  53. CHOICE,L,His Left Hand
  54. END CHOICE
  55. INPUT,Make your Choice:,15
  56. START DECISION
  57. R
  58. RANDOM,FIND
  59. L
  60. RANDOM,FIND
  61. END DECISION
  62. DISPLAY,1,18
  63. The @creature@ giggles as he @scurries@ away....
  64. WAIT
  65. EXIT
  66. ROUTINE,PATH3
  67. CLEAR
  68. DISPLAY,2,7
  69. As you travel down the pathway, you see a large pile of dirt to the
  70. right...As you approach it, something seems to move from within it...
  71. PAUSE,2
  72. DISPLAY,3,10
  73. Oh no!  An ugly large ^creature^ emerges from the @dirt@ and grabs you by 
  74. the throat!  You were @caught@ totally off guard....The ^creature^ is
  75. able to @choke@ you within an inch of your life...and then @runs@ away...
  76. PAUSE,3
  77. CAPTURE
  78. START COMMENT
  79. **********************************************************************
  80. Since the last thing that is happening within the Script file is the
  81. player getting captured, an EXIT command is not needed.  CAPTURE when
  82. issued will automatically exit on it's own.
  83. **********************************************************************
  84. END COMMENT
  85.